home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / include / linux / reiserfs_xattr.h < prev    next >
C/C++ Source or Header  |  2009-10-16  |  465b  |  26 lines

  1. /*
  2.   File: linux/reiserfs_xattr.h
  3. */
  4.  
  5. #ifndef _LINUX_REISERFS_XATTR_H
  6. #define _LINUX_REISERFS_XATTR_H
  7.  
  8. #include <linux/types.h>
  9.  
  10. /* Magic value in header */
  11. #define REISERFS_XATTR_MAGIC 0x52465841    /* "RFXA" */
  12.  
  13. struct reiserfs_xattr_header {
  14.     __le32 h_magic;        /* magic number for identification */
  15.     __le32 h_hash;        /* hash of the value */
  16. };
  17.  
  18. struct reiserfs_security_handle {
  19.     char *name;
  20.     void *value;
  21.     size_t length;
  22. };
  23.  
  24.  
  25. #endif  /*  _LINUX_REISERFS_XATTR_H  */
  26.